Continue a While/Do/For loop.
ContinueLoop [level]
Parameters
level | [optional] The level of the loop to restart. The default is 1 (meaning the current loop). |
Remarks
ContinueLoop will continue execution of the loop at the expression testing statement (that is the While, Until or Next statement).
Related
ExitLoop, For, While, Do
Example
;Print all numbers from 1 to 10 except number 7
For $i = 1 to 10
If $i = 7 Then ContinueLoop
MsgBox(0, "The value of $i is:", $i)
Next
;Example of using level is needed.